/* Global Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    background-color: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width:100%;
    left:0;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 100px;
    width:20%;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index:1000;
    margin-right: 2rem;
}

.hamburger .bar {
    height: 3px;
    width: 25px;
    background-color: #000;
    margin:4px 0;
    transition: 0.4s;
}

active{
    display:flex;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        
        top: 60px;
        left: 0;
        background-color: #fff;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }
}

    .active {
    display: flex;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px;
    margin-top: 60px; /* Adjust to fit navbar height */
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    background: white;
}

.hero-text {
    flex: 1;
    margin-right: 20px;
}

.hero-text h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}

.hero-text p {
    font-size: 1.5em;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 20px;
    }

    .hero-image img {
        width: 80%;
    }
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    margin-top: 60px; /* Adjust to fit navbar height */
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        flex-direction: column-reverse;
    }

    .about-image img {
        width: 80%;
        margin-bottom: 20px;
    }
}

/* Services Section */
.services {
    padding: 100px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Section */
.reviews {
    padding: 100px 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    text-align: center;
}

.reviews-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .reviews-grid {
        flex-direction: column;
    }
}

/* Footer */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #000;
    color: white;
}

.footer a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.footer a:hover {
    color: #f9f9f9;
}
